home *** CD-ROM | disk | FTP | other *** search
/ Ghost Rider iactivecard / Ghost Rider iactivecard.iso / pc / resurrection.swf / scripts / frame_99 / DoAction.as
Encoding:
Text File  |  2007-04-06  |  290 b   |  14 lines

  1. function puzzleDone()
  2. {
  3.    this.gotoAndStop("win");
  4. }
  5. stop();
  6. puzzleListener = new Object();
  7. puzzleListener.controller = this;
  8. puzzleListener.done = function(eventObject)
  9. {
  10.    puzzleListener.controller.puzzleDone();
  11. };
  12. myPuzzle.addEventListener("done",puzzleListener);
  13. stop();
  14.